home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / hi.dir / 00014_StoreLocation.ls < prev    next >
Encoding:
Text File  |  1996-03-18  |  582 b   |  25 lines

  1. on mouseUp
  2.   global mystore
  3.   if the visible of sprite 32 = 1 then
  4.     updateStage()
  5.     set the castNum of sprite 29 to 173
  6.     set mystore to the text of cast "storeLocation"
  7.     puppetSound("blip")
  8.   end if
  9. end
  10.  
  11. on mouseDown
  12.   if the visible of sprite 32 = 1 then
  13.     set x to the locH of sprite 32
  14.     set y to the locV of sprite 32
  15.     set Xnew to x + 1
  16.     set Ynew to y + 1
  17.     set the locH of sprite 32 to Xnew
  18.     set the locV of sprite 32 to Ynew
  19.     set the castNum of sprite 29 to 176
  20.     set the ink of sprite 31 to 39
  21.     nextLocation()
  22.     updateStage()
  23.   end if
  24. end
  25.